/* Stock Status and View Details Button Styles */
.ff-stock-status {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

/* Product Details Page Stock Status */
.pwh-stock-status {
    margin: 10px 0;
    padding: 8px 15px;
    border-radius: 5px;
    display: inline-block;
}

.pwh-stock-status .status-label {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
}

.pwh-stock-status .quantity-label {
    font-size: 14px;
    margin-left: 5px;
    opacity: 0.9;
    letter-spacing: 1px;
}

.pwh-stock-status.in-stock {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.pwh-stock-status.out-of-stock {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
    font-size: 16px;
}

.pwh-stock-status.out-of-stock .status-label {
    font-size: 16px;
    letter-spacing: 1px;
}

.ff-stock-status.in-stock {
    background-color: #4caf50;
    color: white;
    letter-spacing: 1px;
}

.ff-stock-status.out-of-stock {
    background-color: #f44336;
    color: white;
    letter-spacing: 1px;
}

.ff-view-details-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 8px 15px;
    margin-top: 10px;
    background: #43563d;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.ff-view-details-btn:hover {
    background: #0eab65;
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

.ff-view-details-btn i {
    margin-right: 6px;
    font-size: 14px;
}